翻訳と辞書
Words near each other
・ Comparison of photo stitching software
・ Comparison of photogrammetry software
・ Comparison of platform virtualization software
・ Comparison of popular optical data-storage systems
・ Comparison of portable media players
・ Comparison of Portuguese and Spanish
・ Comparison of power management software suites
・ Comparison of privilege authorization features
・ Comparison of programming languages
・ Comparison of programming languages (array)
・ Comparison of programming languages (basic instructions)
・ Comparison of programming languages (functional instructions)
・ Comparison of programming languages (list comprehension)
・ Comparison of programming languages (mapping)
・ Comparison of programming languages (object-oriented programming)
Comparison of programming languages (string functions)
・ Comparison of programming languages (strings)
・ Comparison of programming languages (syntax)
・ Comparison of programming paradigms
・ Comparison of project management software
・ Comparison of Prolog implementations
・ Comparison of property management software
・ Comparison of proxifiers
・ Comparison of PSA systems
・ Comparison of pumps
・ Comparison of PVR software packages
・ Comparison of Q&A sites
・ Comparison of radio systems
・ Comparison of raster graphics editors
・ Comparison of raster-to-vector conversion software


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

Comparison of programming languages (string functions) : ウィキペディア英語版
Comparison of programming languages (string functions)


String functions are used in computer programming languages to manipulate a string or query information about a string (some do both).
Most programming languages that have a string datatype will have some string functions although there may be other low-level ways within each language to handle strings directly. In object-oriented languages, string functions are often implemented as properties and methods of string objects. In functional and list-based languages a string is represented as a list (of character codes), therefore all list-manipulation procedures could be considered string functions. However such languages may implement a subset of explicit string-specific functions as well.
For function that manipulate strings, modern object-oriented languages, like C# and Java have immutable strings and return a copy (in newly allocated dynamic memory), while others, like C manipulate the original string unless the programmer copies data to a new string. See for example Concatenation below.
The most basic example of a string function is the length(string) function. This function returns the length of a string literal.
:e.g. length("hello world") would return 11.
Other languages may have string functions with similar or exactly the same syntax or parameters or outcomes. For example in many languages the length function is usually represented as ''len(string)''. The below list of common functions aims to help limit this confusion.
==Common string functions (multi language reference)==

String functions common to many languages are listed below, including the different names used. The below list of common functions aims to help programmers find the equivalent function in a language. Note, string concatenation and regular expressions are handled in separate pages. Statements in guillemets (« … ») are optional.


抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「Comparison of programming languages (string functions)」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.